home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / write.c,v < prev    next >
Text File  |  1991-11-27  |  2KB  |  95 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.32.13;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.11.27.13.13.21;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * write.c --
  32.  *
  33.  *    Procedure to map from Unix write system call to Sprite.
  34.  *
  35.  * Copyright (C) 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: write.c,v 1.1 86/03/30 15:10:19 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45. #include "compatInt.h"
  46.  
  47.  
  48. /*
  49.  *----------------------------------------------------------------------
  50.  *
  51.  * write --
  52.  *
  53.  *    Procedure to map from Unix write system call to Sprite Fs_Write.
  54.  *
  55.  * Results:
  56.  *    UNIX_ERROR is returned upon error, with the actual error code
  57.  *    stored in errno.  Upon success, the number of bytes actually
  58.  *    written is returned.
  59.  *
  60.  * Side effects:
  61.  *    The data in the buffer is written to the file at the indicated offset.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.  
  66. int
  67. write(descriptor, buffer, numBytes)
  68.     int descriptor;        /* descriptor for stream to write */
  69.     char *buffer;        /* pointer to buffer area */
  70.     int numBytes;        /* number of bytes to write */
  71. {
  72.     ReturnStatus status;    /* result returned by Fs_Write */
  73.     int amountwritten;        /* place to hold number of bytes written */
  74.  
  75.     status = Fs_Write(descriptor, numBytes, buffer, &amountwritten);
  76.     if (status != SUCCESS) {
  77.     errno = Compat_MapCode(status);
  78.     return(UNIX_ERROR);
  79.     } else {
  80.     return(amountwritten);
  81.     }
  82. }
  83. @
  84.  
  85.  
  86. 1.1.1.1
  87. log
  88. @Initial branch for Sprite server.
  89. @
  90. text
  91. @d11 1
  92. a11 1
  93. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/write.c,v 1.1 88/06/19 14:32:13 ouster Exp $ SPRITE (Berkeley)";
  94. @
  95.